home *** CD-ROM | disk | FTP | other *** search
/ ASME's Mechanical Engine…ing Toolkit 1997 December / ASME's Mechanical Engineering Toolkit 1997 December.iso / c_lang / varinc.lzh / TPUT.C < prev   
Text File  |  1979-11-30  |  569b  |  17 lines

  1. /* SOURCE FILE: TPUT.C */
  2. /*****************************************************************************/
  3. /* tput() displays a string at a specified row and column.                   */
  4. /*****************************************************************************/
  5.  
  6. #include <stdio.h>
  7. #include <stddefs.h>
  8.  
  9. void tput(row, col, text)
  10. short row, col;                                           /* cursor location */
  11. char text[];                                              /* text to display */
  12.  
  13.    {
  14.    CUR_MV(row, col);
  15.    fputs(text, stderr);
  16.    }  
  17.